home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
011
/
mouses.arc
/
M_MP80.MSC
< prev
next >
Wrap
Text File
|
1986-08-28
|
2KB
|
92 lines
;
; Multiplan Pop-up Menu Configuration
;
Comment ("Configured for Multiplan")
;
; Parameters
;
Sensitivity (13, 8) ; (Xinc, Yinc)
Hysteresis (1, 1) ; (AutoX, AutoY)
ReverseVideo (Yes) ; Menu is displayed in reverse video
FixedMenu (Yes) ; Menu is in a fixed position
MenuCenter (0, 12) ; (Col, Row) of menu center
EnableBeep (Yes) ; Beeps if wrong button pressed with menu up
;
; Cursor Definitions
;
DataCurs: Cursor
(
Left ([Left])
Right ([Right])
Up ([Up])
Down ([Down])
)
CmdCurs: Cursor
(
Left ([F9])
Right ([F10])
)
;
; Button Definitions
;
LBM: Button (Menu(Main)) ; Left button, Main Menu
MB: Button (Keys([Enter])) ; Middle button
RB: Button (Keys([Esc])) ; Right button
LBC: Button (Menu(Calc)) ; Left button, Calc Menu
;
; Menu Definitions
;
Main: Menu
(
Title ("Main")
Item ("Data Cursor", Cursor(DataCurs))
Item ("Command Cursor", Cursor(CmdCurs))
Item ("Next Field", Keys([Tab]))
Item ("Calc Menu", Menu(Calc), Button(LBC))
Item (":", Keys(":"))
Item ("Help", Keys([a-h]))
Item ("Confirm (Yes)", Keys("Y"))
Item ("Page Up", Keys([PgUp]))
Item ("Page Down", Keys([PgDn]))
Item ("Top of Worksheet", Keys([c-PgUp]))
Item ("Page Left", Keys([c-Left]))
Item ("Page Right", Keys([c-Right]))
Item ("Next Window", Keys([F1]))
Item ("Next Unlocked Cell", Keys([F2]))
)
Calc: Menu
(
Title ("Calc")
Item ("Data Cursor", Cursor(DataCurs))
Item ("Command Cursor", Cursor(CmdCurs))
Item ("Sum(", Keys("Sum("))
Item (":", Keys(":"))
Item (")", Keys(")"))
Item ("(", Keys("("))
Item ("+", Keys("+"))
Item ("-", Keys("-"))
Item ("*", Keys("*"))
Item ("/", Keys("/"))
Item ("Absolute", Keys([F3]))
Item ("Recalc", Keys([F4]))
Item ("Main Menu", Menu(Main), Button(LBM))
)
;
; Mouse Definition
;
Mouse
(
Left (LBM)
Middle (MB)
LeftRight(MB)
Right (RB)
Cursor (DataCurs)
)